home *** CD-ROM | disk | FTP | other *** search
- /*
- * $Header: path.h,v 4.4 86/10/06 20:58:33 essick Exp $
- *
- * Declarations to share among the various routines in
- * this (el-cheapo) package.
- *
- * definitions you may care to change...
- *
- */
-
- #define PATHTABLE "/usr/lib/mail/pathtable"
- #define MAILLOG "/usr/lib/mail/MailLog"
-
-
- struct datum /* dbm datum */
- {
- char *dptr;
- int dsize;
- };
-
- struct findpath_f /* findpath returns these */
- {
- char *fp_path; /* path */
- char *fp_matched; /* lcase suffix */
- int fp_fullroute; /* if full route */
- };
-
- extern struct datum fetch (), firstkey (), nextkey ();
-
- extern char *strsave (); /* in misc.c */
- extern int strlower ();
- extern int strnsame ();
- extern int strsame ();
- extern char *getpath (); /* in getpath.c */
- extern struct findpath_f *findpath (); /* getpath.c */
- extern char *index (); /* in libc.a */
-